home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 April / Chip_2002-04_cd1.bin / zkuste / delphi / kolekce / d3456 / BFC.ZIP / bfc / FileCheck demo / Chckfile.dpr < prev    next >
Text File  |  1999-04-13  |  244b  |  15 lines

  1. program Chckfile;
  2.  
  3. uses
  4.   Forms,
  5.   FileChk in 'FileChk.pas' {FM_Reindex};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.Title := 'CheckFile';
  12.   Application.CreateForm(TFM_Reindex, FM_Reindex);
  13.   Application.Run;
  14. end.
  15.